Install Pure-FTPd
2013/01/25 |
Install Pure-FTPd to configure FTP server to transfer files.
|
|
[1] | Install Pure-FTPd |
[root@www ~]#
yum -y install pure-ftpd
[root@www ~]#
vi /etc/pure-ftpd/pure-ftpd.conf # line 77: change (no Anonymous) NoAnonymous yes
# line 443: uncomment if IPv4 only IPV4Only yes UnixAuthentication yes # line 450: uncomment if IPv6 only IPV6Only yes UnixAuthentication yes systemctl start pure-ftpd.service [root@www ~]# systemctl enable pure-ftpd.service |